home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Ham Radio 2000 #2
/
Ham Radio 2000 - Volume 2.iso
/
HAMV2
/
PACKET
/
TFLINK10
/
TFLNKSRC
/
MAKEFILE
< prev
next >
Wrap
Text File
|
1996-04-14
|
437b
|
19 lines
#
# Makefile - makes tflink.exe from source
#
# All objects are dependent on the tflink.h file. TCC -mc option
# is required to create an effective TSR. This makefile also
# generates a tflink.map file so that the amount of memory required
# for a TSR can be gauged.
#
OBJECTS = tflink.obj ibmcom.obj tfpcx.obj getopts.obj
tflink.exe: $(OBJECTS)
tcc -mc -M $(OBJECTS)
$(OBJECTS): tflink.h
.c.obj:
tcc -mc -c $<